home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / m / maxonc++2.dms / maxonc++2.adf / MCPIncl.lha / setjmp.h < prev    next >
C/C++ Source or Header  |  1992-02-10  |  172b  |  11 lines

  1. #ifndef _INCLUDE_SETJMP_H
  2. #define _INCLUDE_SETJMP_H
  3.  
  4. #define _JMP_BUF_SIZE 16
  5. typedef int jmp_buf[_JMP_BUF_SIZE];
  6.  
  7. int setjmp(jmp_buf);
  8. void longjmp(jmp_buf, int);
  9.  
  10. #endif
  11.